home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / HideMenubarEtc / InitMac.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-16  |  884 b   |  38 lines  |  [TEXT/MMCC]

  1.  
  2. #ifndef _INITMAC_
  3. #define _INITMAC_
  4.  
  5.  
  6. #ifndef __TYPES__
  7. #include <Types.h>
  8. #endif
  9.  
  10. #ifndef __TRAPS__
  11. #include <Traps.h>
  12. #endif
  13.  
  14.  
  15. /**\
  16. |**| ==============================================================================
  17. |**| PUBLIC FUNCTION PROTOTYPES
  18. |**| ==============================================================================
  19. \**/
  20. short            NumToolboxTraps        ( void ) ;
  21. TrapType        GetTrapType            ( short theTrap ) ;
  22. Boolean            TrapAvailable        ( short theTrap ) ;
  23. Boolean            WNEAvailable        ( void ) ;
  24. void            CheckQuickDraw        ( void ) ;
  25. void            InitToolBox            ( short numberOfMasters ) ;
  26.  
  27. /**\
  28. |**| ==============================================================================
  29. |**| PUBLIC GLOBAL EXTERNS
  30. |**| ==============================================================================
  31. \**/
  32. extern Boolean        WNE_available ;
  33. extern Boolean        HasGWorlds ;
  34. extern Boolean        HasCQD ;
  35.  
  36.  
  37. #endif
  38.